home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java 1996 August
/
Java - Summer 1996.iso
/
kaffe-0.2
/
kaffe
/
locks.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-02-11
|
613b
|
25 lines
/*
* locks.h
* Manage locking system
* This include the mutex's and cv's.
*
* Copyright (c) 1996 Systems Architecture Research Centre,
* City University, London, UK.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
*/
#ifndef __locks_h
#define __locks_h
void lockMutex(struct _object*);
void unlockMutex(struct _object*);
void waitCond(struct _object*, long long);
void signalCond(struct _object*);
void broadcastCond(struct _object*);
#endif